Leadtools Namespace : LeadCollection<T> Class |
public class LeadCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.Generic.IReadOnlyList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
'Declaration Public Class LeadCollection(Of T) Inherits System.Collections.ObjectModel.Collection(Of T) Implements System.Collections.Generic.ICollection(Of T), System.Collections.Generic.IEnumerable(Of T), System.Collections.Generic.IList(Of T), System.Collections.Generic.IReadOnlyCollection(Of T), System.Collections.Generic.IReadOnlyList(Of T), System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
'Usage Dim instance As LeadCollection(Of T)
public sealed class LeadCollection<T> : System.Collections.Generic.ICollection<T>, Windows.Foundation.Collections.IIterable //In WinRT the IEnumerableinterface is replaced by IIterable <T>, Windows.Foundation.Collections.IVector //In WinRT the IListinterface is replaced by IVector <T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.Generic.IReadOnlyList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
function Leadtools.LeadCollection()
generic<typename T> public ref class LeadCollection : public System.Collections.ObjectModel.Collection<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.Generic.IReadOnlyList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
The LeadCollection<T> class provides a generic observable collection class that overrides the .NET Collection, class.
The class contains the CollectionChanged event. This events will fire whenever objects are added, moved, replaced or removed to/from the collection.
This class follows the design of the .NET ObservableCollection<T> class.